231. 2 的幂
为保证权益,题目请参考 231. 2 的幂(From LeetCode).
解决方案1
CPP
C++
#include <iostream>
using namespace std;
class Solution
{
public:
bool isPowerOfTwo(int n)
{
int tmp = 1;
for (int i = 0; i < 31; i++)
{
if (n == tmp)
{
return true;
}
tmp = tmp << 1;
}
return false;
}
};
int main()
{
return 0;
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26